home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / hsclib / tag_hsc.h < prev    next >
C/C++ Source or Header  |  1996-07-28  |  997b  |  34 lines

  1. /*
  2.  * tag_hsc.h
  3.  *
  4.  * tag handles for hsc-tags
  5.  *
  6.  */
  7.  
  8. #ifndef HSCLIB_TAG_HSC_H
  9. #define HSCLIB_TAG_HSC_H
  10.  
  11. /*
  12.  *
  13.  * extern references
  14.  *
  15.  */
  16. extern BOOL handle_hsc_comment(HSCPRC * hp, HSCTAG * tag);
  17.  
  18. extern BOOL handle_hsc_defent(HSCPRC * hp, HSCTAG * tag);
  19. extern BOOL handle_hsc_deficon(HSCPRC * hp, HSCTAG * tag);
  20. extern BOOL handle_hsc_define(HSCPRC * hp, HSCTAG * tag);
  21. extern BOOL handle_hsc_deftag(HSCPRC * hp, HSCTAG * tag);
  22. extern BOOL handle_hsc_exec(HSCPRC * hp, HSCTAG * tag);
  23. extern BOOL handle_hsc_export(HSCPRC * hp, HSCTAG * tag);
  24. extern BOOL handle_hsc_insert(HSCPRC * hp, HSCTAG * tag);
  25. extern BOOL handle_hsc_include(HSCPRC * hp, HSCTAG * tag);
  26. extern BOOL handle_hsc_let(HSCPRC * hp, HSCTAG * tag);
  27. extern BOOL handle_hsc_message(HSCPRC * hp, HSCTAG * tag);
  28. extern BOOL handle_hsc_onlycopy(HSCPRC * hp, HSCTAG * tag);
  29. extern BOOL handle_hsc_source(HSCPRC * hp, HSCTAG * tag);
  30. extern BOOL handle_hsc_insert_expression(HSCPRC * hp, HSCTAG * tag);
  31.  
  32. #endif /* HSCLIB_TAG_HSC_H */
  33.  
  34.